summaryrefslogtreecommitdiffstats
path: root/docusaurus/src/theme/NotFound/DDoSProtection.tsx
blob: 6cd8c04bb35e5685ea0d12462bb3fda024698e48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
 * @license
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * This file is part of Wolfree.
 * This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
 */

import React from "react";

const DDoSProtection = () => (
  <center
    style={{
      display: "flex",
      justifyContent: "center",
      alignItems: "center",
      height: 100 + "vh",
    }}
  >
    <center>
      <h1>Checking your browser before accessing Wolfree</h1>
      <p>
        This process is automatic. Your browser will redirect to your requested
        content shortly.
      </p>
      <p>Please allow up to 5 seconds...</p>
      <p>
        <br />
      </p>
      <p>DDoS Protection by Wolfree</p>
    </center>
  </center>
);

export default DDoSProtection;